home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / queries / pgetfindparaattr.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-10  |  677 b   |  25 lines

  1. /*
  2.  *--- PGetFindParaAttr.cpp --------------------------------------------------
  3.  * Copyright (c) 1996 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Thur, Oct 10, 1995 @ 8:49 PM by Paul Norton.
  5.  *
  6.  * Description:  For notes about this class, refer to the
  7.  * PCL documentation file PGetFindParaAttr.html
  8.  *-------------------------------------------------------------------------
  9.  */
  10.  
  11. #include "PGetFindParaAttr.h"
  12. #include "PReplyBuf.h"
  13.  
  14. PGetFindParaAttr::PGetFindParaAttr()
  15. : PHandleQuery(pm_getfindparaattr)
  16. {
  17.     PReplyBuf reply(replyPtr);
  18.     
  19.     reply    >> &sParaStyle
  20.             >> cAlignment
  21.             >> cLeadingType;
  22. }
  23.  
  24. // end of PGetFindParaAttr.cpp
  25.